mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
12 lines
No EOL
283 B
Docker
12 lines
No EOL
283 B
Docker
# Pull base image
|
|
FROM python:3.10.12-slim-buster
|
|
|
|
# Set environment variables
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
# Set work directory to the root of your project
|
|
WORKDIR /Model
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y netcat-openbsd |