mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-01-12 14:06:14 +08:00
95aaaa5fa8
Signed-off-by: MiniDigger <admin@benndorf.dev>
19 lines
628 B
Docker
19 lines
628 B
Docker
FROM node:16-alpine
|
|
|
|
WORKDIR hangar-frontend
|
|
ENV TERM xterm-256color
|
|
|
|
EXPOSE 3000
|
|
ENTRYPOINT ["./entrypoint.sh"]
|
|
|
|
COPY /docker/deployment/hangar-frontend/entrypoint.sh /hangar-frontend/entrypoint.sh
|
|
RUN chmod +x /hangar-frontend/entrypoint.sh
|
|
|
|
COPY /frontend/tsconfig.json /hangar-frontend/tsconfig.json
|
|
COPY /frontend/static/ /hangar-frontend/static/
|
|
COPY /frontend/nuxt.config.ts /hangar-frontend/nuxt.config.ts
|
|
COPY /frontend/locales/ /hangar-frontend/locales/
|
|
COPY /frontend/package.json /hangar-frontend/package.json
|
|
COPY /frontend/node_modules/ /hangar-frontend/node_modules/
|
|
COPY /frontend/.nuxt/ /hangar-frontend/.nuxt/
|