From 31a7a134f0b68263a1166fa553ba6b46e60549c5 Mon Sep 17 00:00:00 2001 From: Yatima Santamorena Date: Fri, 16 Apr 2021 16:59:00 +0200 Subject: [PATCH] python as base image --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6746701..ac7da97 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,14 @@ -FROM ubuntu:18.04 + +FROM python:alpine3.13 ENV MOTD="Welcome to our Docker Syncplay server!" ENV PORT=8999 ENV PASSWORD="changethis" ENV SALT="changethis" -RUN apt update -RUN apt-get install -y make python3 python3-twisted python3-pyside +RUN apk update && apk add make +#RUN apt update +#RUN apt-get install -y make python3 python3-twisted python3-pyside COPY . /syncplay RUN cd syncplay && make install