Odstranit Dockerfile

This commit is contained in:
Michal Utľák 2026-03-22 11:44:52 +00:00
parent a0544835df
commit fffd0e14e8

View File

@ -1,12 +0,0 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY backend ./backend
EXPOSE 3000
CMD ["node", "backend/app.js"]