Don't need sudo

This commit is contained in:
Joe Becher
2019-08-24 12:39:08 -04:00
committed by GitHub
parent 75d10d924b
commit 886c7c8bc8

View File

@@ -5,7 +5,7 @@ FROM ubuntu:latest
WORKDIR /app
COPY . /app
RUN sudo apt update && sudo apt install -y curl
RUN apt update && apt install -y curl
RUN chmod +x /app/entrypoint.sh