Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
poggenpower committed Jan 6, 2025
1 parent 3f9bf17 commit b0a8c52
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/python:3.12
FROM docker.io/python:3.12-alpine

RUN apk fix && \
apk add --no-cache \
Expand Down
31 changes: 31 additions & 0 deletions Dockerfile-ubuntu
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
FROM ubuntu

RUN apt update && \
apt install -y \
build-essential \
gcc-14 \
intltool \
lftp \
librsync-dev \
libffi-dev \
libssl-dev \
openssl \
par2 \
python3-dev \
python3-pip \
python3-venv \
python3 \
rclone \
rsync \
rdiff \
tzdata

RUN apt purge -y gcc-13 && \
update-alternatives --install /usr/bin/g++ g++ /usr/bin/gcc-14 14 && \
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 14

# RUN pip3 install https://gitlab.com/duplicity/duplicity/-/archive/dev/duplicity-dev.tar.bz2 --break --no-binary :all: --no-cache-dir

USER root
WORKDIR /root
CMD ["/bin/bash"]

0 comments on commit b0a8c52

Please sign in to comment.