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 e16a565c0c - Show all commits

14
Dockerfile Normal file
View File

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