Borrowing-TrackerBackend/Dockerfile

20 lines
394 B
Text
Raw Normal View History

ARG DOCKER_PLATFORM=$TARGETPLATFORM
FROM --platform=$DOCKER_PLATFORM python:3.11.4-bookworm
2023-12-03 00:08:10 +08:00
ENV PYTHONBUFFERED 1
# Create directory
RUN mkdir /code
# Set the working directory to /code
WORKDIR /code
# Mirror the current directory to the working directory for hotreloading
ADD . /code/
# Install pipenv
RUN pip install -r requirements.txt
2023-12-03 00:08:10 +08:00
# Expose port 8000 for the web server
EXPOSE 8000