Commit 0eaf4fdd authored by blackheaven's avatar blackheaven
Browse files

Add dockerignore and change single to double quote

parent 777113fe
Loading
Loading
Loading
Loading
Loading

.dockerignore

0 → 100644
+2 −0
Original line number Diff line number Diff line
node_modules
npm-debug.log
 No newline at end of file
+4 −3
Original line number Diff line number Diff line
FROM node:18-alpine

WORKDIR /usr/app
COPY ./ /usr/app
RUN mkdir -p /app
WORKDIR /app
ADD . /app

RUN npm install --legacy-peer-deps

EXPOSE 3000

CMD ['npm' , 'run', 'dev']
 No newline at end of file
CMD ["npm" , "run", "dev"]
 No newline at end of file