mirror of
https://github.com/aurora-dot/pastel.codes.git
synced 2024-11-15 21:02:19 +00:00
E
dec522c914
Rename prepare step Attempt docker fix Docker fix Fix bio and add pug prettier config Fix spacing Fix grammer
14 lines
235 B
Docker
14 lines
235 B
Docker
FROM node:21-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" ]
|