keyserver/Dockerfile
Jakub Filo d8456d905b
Some checks failed
Build & publish images / build-and-push-image (push) Failing after 16s
Add Docker builds
2023-06-07 07:30:36 +00:00

10 lines
120 B
Docker

FROM node:16
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
COPY . .
EXPOSE 3000
CMD [ "node", "index.js" ]