ContainersWorkspace/snowflake/Containerfile
Maciej Lebiest b622342887
Some checks failed
Build images / build-images-amd64 (push) Failing after 6m55s
Build images / build-images-arm64 (push) Failing after 8m18s
Build images / update-images-manifests (push) Has been skipped
various updates
2024-03-20 22:17:33 +01:00

20 lines
679 B
Docker

FROM registry.fedoraproject.org/fedora-minimal
ENV TZ=Europe/Warsaw
RUN dnf5 install -y shadow-utils git golang && \
useradd -u 1423 -m -s '/bin/bash' -U snowflake && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
git clone https://git.torproject.org/pluggable-transports/snowflake.git && \
cd snowflake/proxy && \
go build && \
dnf5 remove -y golang git shadow-utils && \
dnf5 -y autoremove && \
dnf5 -y clean all && \
mv /snowflake/proxy/proxy /usr/bin/proxy && \
cd / && \
rm -rf /snowflake /root/* && \
chown snowflake:snowflake /usr/bin/proxy
USER snowflake
ENTRYPOINT ["/usr/bin/proxy"]