Skip to content

Commit

Permalink
Fix Makefile and Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrox committed Apr 6, 2021
1 parent 5a53429 commit 9a83567
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ TEST_IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):test
build:
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o _output/s3driver ./cmd/s3driver
test:
docker build -t $(FULL_IMAGE_TAG) -f cmd/s3driver/Dockerfile.full .
docker build -t $(TEST_IMAGE_TAG) -f test/Dockerfile .
docker run --rm --privileged -v $(PWD):$(PROJECT_DIR) --device /dev/fuse $(TEST_IMAGE_TAG)
container: build
container:
docker build -t $(IMAGE_TAG) -f cmd/s3driver/Dockerfile .
docker build -t $(FULL_IMAGE_TAG) --build-arg VERSION=$(VERSION) -f cmd/s3driver/Dockerfile.full .
docker build -t $(FULL_IMAGE_TAG) -f cmd/s3driver/Dockerfile.full .
push: container
docker push $(IMAGE_TAG)
docker push $(FULL_IMAGE_TAG)
Expand Down
2 changes: 1 addition & 1 deletion cmd/s3driver/Dockerfile.full
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ COPY --from=s3backer /usr/bin/s3backer /usr/bin/s3backer
RUN apt-get update && \
apt-get install -y \
libfuse2 gcc sqlite3 libsqlite3-dev \
s3fs psmisc procps libcurl3 xfsprogs curl unzip && \
s3fs psmisc procps libcurl4 xfsprogs curl unzip && \
rm -rf /var/lib/apt/lists/*

# install rclone
Expand Down
7 changes: 4 additions & 3 deletions test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ RUN apt-get update && \
git wget make && \
rm -rf /var/lib/apt/lists/*

RUN wget -q https://golang.org/dl/go1.15.7.linux-amd64.tar.gz && \
tar -xf go1.15.7.linux-amd64.tar.gz && \
rm go1.15.7.linux-amd64.tar.gz && \
ARG GOVERSION=1.16.3
RUN wget -q https://golang.org/dl/go${GOVERSION}.linux-amd64.tar.gz && \
tar -xf go${GOVERSION}.linux-amd64.tar.gz && \
rm go${GOVERSION}.linux-amd64.tar.gz && \
mv go /usr/local

ENV GOROOT /usr/local/go
Expand Down

0 comments on commit 9a83567

Please sign in to comment.