first commit with existing project files
This commit is contained in:
14
demo-client/Dockerfile
Executable file
14
demo-client/Dockerfile
Executable file
@@ -0,0 +1,14 @@
|
||||
|
||||
# Dockerfile pour développement/demo Angular avec ng serve
|
||||
FROM node:20
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 4200
|
||||
|
||||
CMD ["npx", "ng", "serve", "--host", "0.0.0.0"]
|
||||
Reference in New Issue
Block a user