remove dockerfile

This commit is contained in:
b1ek 2023-03-10 17:35:11 +10:00
parent d79d696ba4
commit 960ccfc994
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
FROM node:19
WORKDIR /opt/code
COPY . /opt/code
RUN cat .gitignore | xargs rm -rf && \
npm i && \
./install
CMD [ "bash", "-c", "if [[ $APP_DEBUG == 'true' ]]; then npm run dev; else npm run prod; fi" ]