File tree 4 files changed +3
-60
lines changed
4 files changed +3
-60
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ RUN . $VIRTUAL_ENV/bin/activate &&\
63
63
conan profile new default --detect && \
64
64
conan profile update settings.compiler.libcxx=libstdc++11 default &&\
65
65
cmake .. && make -j$(nproc)\
66
- && make install
66
+ && make install \
67
67
&& python -m pip uninstall -y conan versioneer && \
68
68
rm /usr/bin/python && \
69
69
apk del .build-deps
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,21 +7,16 @@ LABEL org.opencontainers.image.description="Docker container for encfs"
7
7
LABEL org.opencontainers.image.url="https://github.com/usma0118/containers/encfs"
8
8
LABEL org.opencontainers.image.source="https://github.com/usma0118/containers/encfs"
9
9
# Install dependencies and remove cache
10
- # RUN apk add --no-cache libc6-compat=1.2.2-r9 fuse3=3.16.2-r0 encfs=1.9.5-r24 tini=0.19.0-r3 bash=5.2.26-r0 && \
11
10
RUN apk update --no-cache && apk upgrade --no-cache
12
11
RUN apk add --no-cache bash=5.2.21-r0 fuse3=3.16.2-r0 encfs=1.9.5-r22 tini=0.19.0-r2 && \
13
12
rm -rf /var/cache/apk/* && \
14
13
sed -i 's/#user_allow_other/user_allow_other/' /etc/fuse.conf
15
14
16
- # Create a non-root user and group for running the container
17
- # RUN addgroup --gid 1001 -S secureFS \
18
- # && adduser -u 1001 securefs -S -D -H -s /sbin/nologin -G secureFS -g 'secureFS User'
19
-
20
- # Set environment variables
15
+ # Set environment variables
21
16
ENV MOUNT_OPTIONS="allow_other,noatime"
22
17
VOLUME /encrypted
23
18
VOLUME /decrypted
24
- WORKDIR /app
19
+ WORKDIR /decrypted
25
20
26
21
# Copy the run script to the container and make it executable
27
22
COPY run.sh /app/run.sh
You can’t perform that action at this time.
0 commit comments