This commit is contained in:
Anuj K 2025-09-12 23:48:48 +05:30
parent 2d6a1cbcef
commit 8e5bb377fc
2 changed files with 10 additions and 1 deletions

View file

@ -4,7 +4,7 @@ WORKDIR /app
COPY package*.json ./
RUN npm install --production
RUN npm install
COPY backend/ ./backend/
COPY public/ ./public/

9
docker-compose.yml Normal file
View file

@ -0,0 +1,9 @@
services:
retropulse:
image: codeberg.org/aiquiral/retropulse:latest
container_name: retropulse
ports:
- "8090:8090"
env_file:
- .env
restart: unless-stopped