Files
unity-xml-parser/Dockerfile
2023-05-16 11:08:12 +00:00

14 lines
272 B
Docker

FROM python:3.9-slim-buster
RUN apt-get update && \
apt-get install -y --no-install-recommends \
gcc \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt /app
RUN pip install --no-cache-dir -r requirements.txt
COPY unity_test_parser.py /app