This repository has been archived on 2023-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
OwlBoard/Dockerfile
Fred Boniface dea8221054 Change Dockerfile order to improve cache hits
Signed-off-by: Fred Boniface <fred@fjla.uk>
2023-01-14 11:48:37 +00:00

8 lines
133 B
Docker

FROM node:19
EXPOSE 8460
WORKDIR /usr/src/app
COPY ./package*.json ./
RUN npm ci --only=production
COPY . .
CMD [ "node", "app.js" ]