mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
11 lines
231 B
Text
11 lines
231 B
Text
FROM python:3.10.12-slim-buster
|
|
|
|
WORKDIR /var/task
|
|
|
|
# Install python dependencies
|
|
COPY ./requirements/base.txt ./requirements/base.txt
|
|
RUN pip install --upgrade pip
|
|
RUN pip install -r requirements/base.txt
|
|
|
|
# Copy project
|
|
COPY . .
|