Skip to content

Commit

Permalink
Create a Dockerfile for building deb and rpm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
lezh committed Jan 20, 2021
1 parent cb87f2c commit ec7cd01
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions tools/package_gcsfuse_docker/Dockerfile
@@ -0,0 +1,66 @@
# Copyright 2020 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# BUILD EXAMPLE
# docker build . -t gcsfuse-release --build-arg GCSFUSE_VERSION=0.33.0
# RUN EXAMPLE
# docker run -it -v /tmp:/output gcsfuse-release cp -r /packages /output

FROM golang:1.15.7 as builder

RUN apt-get update -qq && \
apt-get install -y ruby ruby-dev rubygems build-essential rpm && \
gem install --no-document fpm

ENV CGO_ENABLED=0
ENV GOOS=linux

ARG GCSFUSE_VERSION="0.33.0"
ARG GCSFUSE_REPO="github.com/googlecloudplatform/gcsfuse/"
ENV GCSFUSE_PATH "$GOPATH/src/$GCSFUSE_REPO"
RUN go get -u ${GCSFUSE_REPO}

WORKDIR ${GCSFUSE_PATH}
RUN git checkout "v${GCSFUSE_VERSION}"

ARG GCSFUSE_BIN="/gcsfuse"
WORKDIR ${GOPATH}
RUN go install ${GCSFUSE_REPO}/tools/build_gcsfuse
RUN mkdir -p ${GCSFUSE_BIN}
RUN build_gcsfuse ${GCSFUSE_PATH} ${GCSFUSE_BIN} ${GCSFUSE_VERSION}

ARG GCSFUSE_PKG="/packages"
RUN mkdir -p ${GCSFUSE_PKG}
WORKDIR ${GCSFUSE_PKG}
RUN fpm \
-s dir \
-t deb \
-n gcsfuse \
-C ${GCSFUSE_BIN} \
-v ${GCSFUSE_VERSION} \
-d fuse \
--vendor "" \
--url "https://$GCSFUSE_REPO" \
--description "A user-space file system for Google Cloud Storage."
RUN fpm \
-s dir \
-t rpm \
-n gcsfuse \
-C ${GCSFUSE_BIN} \
-v ${GCSFUSE_VERSION} \
-d fuse \
--vendor "" \
--url "https://$GCSFUSE_REPO" \
--description "A user-space file system for Google Cloud Storage."

0 comments on commit ec7cd01

Please sign in to comment.