Hangar/docker/deployment/hangar-frontend/Dockerfile
2021-02-05 19:20:34 +01:00

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"]