Dockerfile tested on fedora docker

This commit is contained in:
infidel
2022-11-26 09:47:30 +07:00
parent 55872a1613
commit 7ab49a1b26
2 changed files with 2 additions and 4 deletions

View File

@@ -1,12 +1,10 @@
FROM node:16
WORKDIR /usr/src/app
COPY package*.json /usr/src/app
COPY package*.json /usr/src/app/
RUN npm install
COPY . /usr/src/app
RUN npm run build
RUN npm run build:tailwind
RUN npm run build:fontawesome
RUN chown -R 1000690000:0 "/.npm"
EXPOSE 5000
CMD ["npm", "start"]