Commit d7b16340 authored by blackheaven's avatar blackheaven
Browse files

Merge branch 'docker' into 'main'

Add dockerignore and change single to double quote

See merge request !2
parents 777113fe 0eaf4fdd
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