mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-12-27 07:03:26 +08:00
14 lines
255 B
Docker
14 lines
255 B
Docker
FROM node:12-alpine
|
|
|
|
WORKDIR hangar-frontend
|
|
|
|
COPY .nuxt /hangar-frontend/
|
|
COPY node_modules /hangar-frontend/
|
|
COPY package.json /hangar-frontend/
|
|
COPY nuxt.config.ts /hangar-frontend/
|
|
|
|
ENV TERM xterm-256color
|
|
|
|
EXPOSE 3000
|
|
ENTRYPOINT ["nuxt-ts", "start"]
|