keyserver/Dockerfile
Jakub Filo b8b71481c6
All checks were successful
Build & publish images / build-and-push-image (push) Successful in 6m11s
Add Docker builds
2023-06-19 06:50:05 +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" ]