Files
website-old/Dockerfile
2021-08-12 10:20:49 +02:00

16 lines
180 B
Docker
Executable File

FROM node:16-alpine3.11
RUN mkdir -p /usr/src/ares
WORKDIR /usr/src/ares
COPY . /usr/src/ares
RUN yarn install --production
RUN yarn build
EXPOSE 3333
CMD ["yarn", "start"]