mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-08-28 21:30:34 +02:00
ditch scala
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy package files
|
||||
COPY package*.json ./
|
||||
|
||||
# Install dependencies
|
||||
RUN npm ci --only=production
|
||||
|
||||
# Copy built application
|
||||
COPY dist ./dist
|
||||
|
||||
# Expose port
|
||||
EXPOSE 8080
|
||||
|
||||
# Start server
|
||||
CMD ["node", "dist/server.js"]
|
||||
Reference in New Issue
Block a user