liuyuqi-dellpc 10 months ago
parent
commit
d6a46e226d
1 changed files with 0 additions and 16 deletions
  1. 0 16
      dotnet/Dockerfile

+ 0 - 16
dotnet/Dockerfile

@@ -1,17 +1 @@
-FROM node:lts-alpine as base
-RUN apk add --no-cache tini
-ENV NODE_ENV=production
-USER  node
-WORKDIR /app
-COPY package*.json ./
-RUN npm install
-COPY . .
-RUN chown -R appuser:appgroup /app
-EXPOSE 8080
 
-FROM base as builder
-
-
-FROM base as runner
-
-CMD [ "npm", "start" ]