rickgdbotmainserver / Dockerfile
ccprojects's picture
Update Dockerfile
3c3320e verified
raw
history blame contribute delete
117 Bytes
FROM node:20-alpine
WORKDIR /app
COPY index.js .
RUN apk add --no-cache git
EXPOSE 3000
CMD ["node", "index.js"]