Skip to content

Commit

Permalink
Fix tester to create home
Browse files Browse the repository at this point in the history
Unsure how it wasn't before, but... ah well. This mainly is because Spigot nonsense
[tester]
  • Loading branch information
LordRalex committed Mar 17, 2023
1 parent 4beb694 commit d98831e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile-templatetester
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ FROM ubuntu:20.04

ENV DEBIAN_FRONTEND=noninteractive

RUN useradd pufferpanel

RUN apt update && \
apt install -y zip unzip tar git wget curl xz-utils dirmngr gnupg apt-transport-https ca-certificates software-properties-common

Expand All @@ -37,9 +35,12 @@ RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E03280
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -

RUN apt update && \
apt install -y nodejs lib32gcc1 mono-complete
apt install -y nodejs lib32gcc1 mono-complete && \
apt-get clean

RUN apt-get clean
RUN useradd pufferpanel && \
mkdir /home/pufferpanel && \
chown -R pufferpanel:pufferpanel /home/pufferpanel


COPY --from=builder /pufferpanel /pufferpanel
Expand Down

0 comments on commit d98831e

Please sign in to comment.