mirror of
https://github.com/Dadechin/Dashboard-XRoom.git
synced 2025-07-02 00:04:34 +00:00
19 lines
335 B
Docker
19 lines
335 B
Docker
FROM python:3.9
|
|
|
|
# Set environment variables
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
ENV PYTHONPATH=/code:/code/CLINET_APPS
|
|
|
|
# Set work directory
|
|
WORKDIR /code
|
|
|
|
# Update pip
|
|
RUN pip install --upgrade pip
|
|
|
|
# Install dependencies
|
|
COPY requirements.txt /code/
|
|
RUN pip install -r requirements.txt
|
|
|
|
# Copy project
|
|
COPY . /code/ |