remove dockerfiles

This commit is contained in:
Nick Playfair 2025-06-05 21:46:03 +01:00
parent 7663b3831c
commit 546328187f
2 changed files with 0 additions and 25 deletions

View File

@ -1,8 +0,0 @@
node_modules
npm-debug.log
Dockerfile
.dockerignore
.env
.git
.gitignore
.env.example

View File

@ -1,17 +0,0 @@
FROM node:20-alpine
RUN mkdir /app
WORKDIR /app
COPY . /app
RUN chown -R node:node /app
USER node
RUN npm install
EXPOSE 3001
CMD [ "npm", "run", "start" ]