mirror of
https://github.com/aurora-dot/pastel.codes.git
synced 2024-11-14 12:22:20 +00:00
fc85964ed9
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN10-GLIBC-1315333 - https://snyk.io/vuln/SNYK-DEBIAN10-PYTHON27-1063178 - https://snyk.io/vuln/SNYK-DEBIAN10-PYTHON27-1063178 - https://snyk.io/vuln/SNYK-DEBIAN10-PYTHON27-1063178 - https://snyk.io/vuln/SNYK-DEBIAN10-PYTHON27-1063178
14 lines
235 B
Docker
14 lines
235 B
Docker
FROM node:16-bullseye-slim
|
|
|
|
ENV IS_DOCKER=true
|
|
ENV NODE_ENV=production
|
|
|
|
WORKDIR /app
|
|
COPY ["package.json", "package-lock.json*", "./"]
|
|
RUN npm install
|
|
RUN npm install nodemon
|
|
COPY . .
|
|
RUN npm run build-tailwind
|
|
|
|
CMD [ "npm", "start" ]
|