Files
website-old/Dockerfile
2021-08-05 15:59:14 +02:00

19 lines
199 B
Docker
Executable File

FROM node:15.8.0-alpine3.10
RUN mkdir -p /usr/src/ares
WORKDIR /usr/src/ares
COPY . /usr/src/ares
RUN yarn install
RUN yarn build
RUN cp .env build
EXPOSE 3333
COPY . .
CMD ["yarn", "start"]