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

6 lines
118 B
Docker
Raw Normal View History

2022-12-12 14:28:40 +00:00
FROM node:19
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
CMD [ "node", "app.js" ]