Skip to content

Commit a05c0f2

Browse files
authored
fixing minor things
1 parent 9aaddce commit a05c0f2

File tree

4 files changed

+3
-60
lines changed

4 files changed

+3
-60
lines changed

cryfs/Dockerfile.alpine

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ RUN . $VIRTUAL_ENV/bin/activate &&\
6363
conan profile new default --detect && \
6464
conan profile update settings.compiler.libcxx=libstdc++11 default &&\
6565
cmake .. && make -j$(nproc)\
66-
&& make install
66+
&& make install \
6767
&& python -m pip uninstall -y conan versioneer && \
6868
rm /usr/bin/python && \
6969
apk del .build-deps

cryfs/dev/profile

-14
This file was deleted.

cryfs/old.dockerfile

-38
This file was deleted.

encfs/Dockerfile

+2-7
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,16 @@ LABEL org.opencontainers.image.description="Docker container for encfs"
77
LABEL org.opencontainers.image.url="https://github.com/usma0118/containers/encfs"
88
LABEL org.opencontainers.image.source="https://github.com/usma0118/containers/encfs"
99
# 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 && \
1110
RUN apk update --no-cache && apk upgrade --no-cache
1211
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 && \
1312
rm -rf /var/cache/apk/* && \
1413
sed -i 's/#user_allow_other/user_allow_other/' /etc/fuse.conf
1514

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
2116
ENV MOUNT_OPTIONS="allow_other,noatime"
2217
VOLUME /encrypted
2318
VOLUME /decrypted
24-
WORKDIR /app
19+
WORKDIR /decrypted
2520

2621
# Copy the run script to the container and make it executable
2722
COPY run.sh /app/run.sh

0 commit comments

Comments
 (0)