Skip to content
Snippets Groups Projects
Commit 6816bbb3 authored by Administrator's avatar Administrator
Browse files

Update Dockerfile

parent 624af72e
No related branches found
No related tags found
No related merge requests found
Pipeline #408 passed with stage
in 11 seconds
# Adapted from https://github.com/efrecon/docker-s3fs-client/blob/master/Dockerfile # Adapted from https://github.com/efrecon/docker-s3fs-client/blob/master/Dockerfile
# pinning to current version # pinning to current version
FROM python:3.8.3-alpine AS build FROM alpine:3.13.2 AS build
ARG S3FS_VERSION=v1.89 ARG S3FS_VERSION=v1.89
...@@ -16,7 +16,6 @@ autoconf \ ...@@ -16,7 +16,6 @@ autoconf \
libxml2-dev \ libxml2-dev \
libressl-dev \ libressl-dev \
fuse-dev \ fuse-dev \
curl \
curl-dev && \ curl-dev && \
git clone https://github.com/s3fs-fuse/s3fs-fuse.git && \ git clone https://github.com/s3fs-fuse/s3fs-fuse.git && \
cd s3fs-fuse && \ cd s3fs-fuse && \
...@@ -36,11 +35,14 @@ apk --no-cache add \ ...@@ -36,11 +35,14 @@ apk --no-cache add \
fuse \ fuse \
libxml2 \ libxml2 \
libcurl \ libcurl \
curl \
libgcc \ libgcc \
libstdc++ \ libstdc++ \
tini && \ tini && \
s3fs --version s3fs --version
RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python
WORKDIR /projects WORKDIR /projects
COPY *.sh /usr/local/bin/ COPY *.sh /usr/local/bin/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment