19 lines
329 B
Docker
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"]
|