containerize #20

Merged
calm-steam merged 4 commits from :containerize into master 2025-03-05 16:16:04 +01:00
Showing only changes of commit 2e114fef44 - Show all commits

View File

@ -1,12 +1,12 @@
FROM python:3.10-alpine FROM python:3.10-alpine
ARG game_server_directory="/usr/src/GameServerSupervisor" ARG supervisor_dir="/usr/src/GameServerSupervisor"
RUN mkdir -p $game_server_directory RUN mkdir -p $supervisor_dir
WORKDIR $game_server_directory WORKDIR $supervisor_dir
COPY . $game_server_directory COPY . $supervisor_dir
RUN pip install --upgrade pip RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt