mirror of
https://github.com/hexolan/panels.git
synced 2026-03-26 12:40:21 +00:00
init user-service
This commit is contained in:
13
services/user-service/Dockerfile
Normal file
13
services/user-service/Dockerfile
Normal file
@@ -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