init
This commit is contained in:
13
darkbazaar/Dockerfile
Executable file
13
darkbazaar/Dockerfile
Executable file
@@ -0,0 +1,13 @@
|
||||
FROM python:3.10-slim-bookworm
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN pip install uuid
|
||||
|
||||
COPY src/ ./src/
|
||||
COPY src/static/ ./src/static/
|
||||
COPY src/templates/ ./src/templates/
|
||||
|
||||
EXPOSE 8000
|
||||
Reference in New Issue
Block a user