hostr/Containerfile
Jonathan Cremin 0d72c4bf3b
All checks were successful
ci / build-image (push) Successful in 2m33s
Disable signups, minor fixes
2025-05-30 09:03:26 +01:00

17 lines
179 B
Docker

FROM node:16.13.1
WORKDIR /app
COPY package.json package.json
COPY yarn.lock yarn.lock
RUN yarn
COPY . .
RUN yarn run build
ENV PORT 3000
EXPOSE 3000
CMD ["yarn", "start"]