-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile.fedora
34 lines (27 loc) · 938 Bytes
/
Dockerfile.fedora
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM fedora:rawhide
# This is a very up-to-date image, so we aren't going to lock package versions.
# hadolint ignore=DL3041
RUN dnf install -y \
curl \
git \
sudo \
coreutils && \
dnf clean all
RUN useradd -m max && \
echo "max ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
USER max
ENV USER=max
# NOTE: This is dangerous because it will include decrypted secrets in the image!
#RUN mkdir -p /home/max/src/miscellaneous
#COPY --chown=max . /home/max/src/miscellaneous/
RUN mkdir -p /home/max/src && \
git clone https://github.com/Maxattax97/miscellaneous.git /home/max/src/miscellaneous
# Overwrite the install script with the latest one in the repository.
COPY --chown=max install.sh /home/max/src/miscellaneous/install.sh
WORKDIR /home/max/src/miscellaneous
RUN /bin/sh -o pipefail -c "yes | \
AUTOMATED=1 /home/max/src/miscellaneous/install.sh && \
dnf clean all"
WORKDIR /home/max
ENTRYPOINT ["/bin/zsh"]
HEALTHCHECK NONE