mirror of
https://github.com/hexolan/panels.git
synced 2026-05-20 03:29:23 +01:00
init user-service
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
FROM node:20-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Install requirements
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm install
|
||||
|
||||
# Copy files
|
||||
COPY . ./
|
||||
|
||||
EXPOSE 9090
|
||||
CMD ["npm", "run", "start"]
|
||||
Reference in New Issue
Block a user