Files
2023-07-24 10:40:10 +00:00

19 lines
329 B
Docker

FROM ubuntu
RUN apt-get update \
&& apt-get install -y \
curl \
git \
sudo \
vim \
nano \
wget \
zip \
&& rm -rf /var/lib/apt/lists/*
RUN wget https://github.com/LAX18/PixelPlaceBot/raw/main/custom_release.zip
RUN mkdir /work
WORKDIR /work
RUN unzip ../custom_release.zip
WORKDIR /work/dist/placebot
CMD ["./placebot"]