From 8faedf7dad0a2677a2ec3a513a6d382a4d03bb75 Mon Sep 17 00:00:00 2001 From: Victor Mylle Date: Tue, 16 May 2023 11:08:12 +0000 Subject: [PATCH] Upload New File --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..46977a9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +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