imagetodxf / Dockerfile
Luis-Filipe's picture
Update Dockerfile
eb0a0ef verified
raw
history blame contribute delete
491 Bytes
FROM python:3.9-slim
# Atualiza os reposit贸rios e instala o Inkscape
RUN apt-get update && apt-get install -y inkscape
# Atualizar os reposit贸rios e instalar o Inkscape
RUN apt-get update && apt-get install -y inkscape
# Copia e instala as depend锚ncias Python
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
run apt-get update && apt-get install -y inkscape
# Copia toda a aplica莽茫o para o diret贸rio /app
COPY . /app
WORKDIR /app
CMD ["python", "app.py"]