Spaces:
Runtime error
Runtime error
File size: 337 Bytes
de2c597 8dcb222 de2c597 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# Dockerfile to create base image with all needed dependencies
# using newest python as a base image
FROM python:3.11.6
# install dependencies based on requirements
COPY requirements.txt ./
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# build and run commands
## docker build -t thesis:0.1.6-base -f Dockerfile-Base .
|