From 377fef37a06a31e8c5ab9b4ee9c777e6f212a4e1 Mon Sep 17 00:00:00 2001 From: myitinos Date: Sun, 15 Sep 2019 04:49:49 +0800 Subject: [PATCH] changed docker base image to ubuntu:latest --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index b065fe2..578e52f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,12 @@ -FROM alpine +FROM ubuntu:latest -RUN apk update -RUN apk add --no-cache \ - socat +RUN apt update && \ + apt install socat -y WORKDIR /app COPY ./flag.txt . -COPY ./spell-warz . +COPY ./spell-warz-again . CMD socat tcp-listen:12345,reuseaddr,fork EXEC:\"./spell-warz\"