Compare commits

..

No commits in common. "6755f1ddf985624ae349e9b1a372c2be841f24df" and "3f0f4ab959eda901975440cc23d66852b609dc9c" have entirely different histories.

3 changed files with 0 additions and 29 deletions

View File

@ -1,12 +0,0 @@
FROM python:3
WORKDIR /usr/src/app
COPY game_collection/requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY game_collection .
EXPOSE 3004
CMD [ "flask", "run", "--host=0.0.0.0", "--port=3004" ]

View File

@ -1,10 +0,0 @@
version: '3.8'
services:
app:
build: .
ports:
- "3004:3004"
volumes:
- /home/manuel/docker/MikaApp/instance:/usr/src/app/instance
command: ["./start.sh"]

View File

@ -1,7 +0,0 @@
#!/bin/bash
# Pull the latest changes from the repository
git pull https://gitlab.fire-devils.org/ManuelW/MikaList.git
# Start the Flask application
flask run --host=0.0.0.0 --port=3004