永栄コードのマージ開始
This commit is contained in:
20
rogaining_autoprint/Dockerfile
Normal file
20
rogaining_autoprint/Dockerfile
Normal file
@ -0,0 +1,20 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
# CUPSとその他必要なパッケージのインストール
|
||||
RUN apt-get update && apt-get install -y \
|
||||
cups \
|
||||
cups-client \
|
||||
gcc \
|
||||
libcups2-dev \
|
||||
python3-dev \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY ./app .
|
||||
|
||||
CMD ["python", "main.py"]
|
||||
|
||||
Reference in New Issue
Block a user