actual-server/Dockerfile
2022-04-29 11:10:20 -04:00

19 lines
269 B
Docker

# base node image
FROM node:16-bullseye-slim as base
RUN apt-get update && apt-get install -y openssl
RUN mkdir /app
WORKDIR /app
ENV NODE_ENV=production
ADD . .
RUN yarn install --production
RUN mkdir ./server-files
RUN mkdir ./user-files
CMD ["yarn", "start"]