The beginning
Added the base structure and a minimal web frontend. Much work needed.
This commit is contained in:
parent
25b5af94fd
commit
a2f9b4f978
9 changed files with 247 additions and 9 deletions
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
#Download Python from DockerHub and use it
|
||||
FROM python:3.11.3
|
||||
|
||||
#Set the working directory in the Docker container
|
||||
WORKDIR /app
|
||||
|
||||
#Copy the dependencies file to the working directory
|
||||
COPY ./requirements.txt .
|
||||
|
||||
#Install the dependencies
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
COPY ./flask/ .
|
Loading…
Add table
Add a link
Reference in a new issue