Initial commit
This commit is contained in:
15
skipper-api/Dockerfile
Normal file
15
skipper-api/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app/skipper-api
|
||||
|
||||
COPY skipper-api/package.json ./package.json
|
||||
RUN npm install --omit=dev
|
||||
|
||||
COPY skipper-api/src ./src
|
||||
COPY shared /app/shared
|
||||
|
||||
ENV PORT=3000
|
||||
ENV DATA_DIR=/app/data
|
||||
|
||||
CMD ["npm", "start"]
|
||||
|
||||
Reference in New Issue
Block a user