This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from hashicorp/sudomateo/various-updates
various project updates
- Loading branch information
Showing
5 changed files
with
25 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
FROM docker.mirror.hashicorp.services/ruby:2.3-alpine | ||
MAINTAINER Seth Vargo <[email protected]> | ||
FROM docker.mirror.hashicorp.services/ruby:2.7.4-alpine | ||
|
||
ARG GEM_VERSION | ||
|
||
# Install packages | ||
RUN apk add --no-cache bash build-base curl jq nodejs python py-setuptools wget git openssh-client | ||
RUN apk add --no-cache bash build-base ca-certificates curl jq nodejs python3 py3-setuptools wget git openssh-client | ||
|
||
# Install s3cmd | ||
RUN cd /tmp && \ | ||
wget https://github.com/s3tools/s3cmd/releases/download/v1.6.1/s3cmd-1.6.1.tar.gz && \ | ||
tar -xzvf s3cmd-1.6.1.tar.gz && \ | ||
cd s3cmd-1.6.1 && \ | ||
python setup.py install && \ | ||
curl -L -O https://github.com/s3tools/s3cmd/releases/download/v2.2.0/s3cmd-2.2.0.tar.gz && \ | ||
tar -xzvf s3cmd-2.2.0.tar.gz && \ | ||
cd s3cmd-2.2.0 && \ | ||
python3 setup.py install && \ | ||
cd .. && \ | ||
rm -rf s3cmd-1.6.1* | ||
rm -rf s3cmd-2.2.0* | ||
|
||
# Upgrade bundler | ||
RUN gem install bundler -v '~> 1.13' --no-document && \ | ||
RUN gem install bundler -v '~> 1.17' --no-document && \ | ||
gem cleanup | ||
|
||
# Install the bundle | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Middleman | ||
module HashiCorp | ||
VERSION = "0.3.44" | ||
VERSION = "0.3.45" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,7 @@ require 'middleman-hashicorp/version' | |
Gem::Specification.new do |spec| | ||
spec.name = 'middleman-hashicorp' | ||
spec.version = Middleman::HashiCorp::VERSION | ||
spec.authors = ['Seth Vargo'] | ||
spec.email = ['[email protected]'] | ||
spec.authors = ['HashiCorp, Inc.'] | ||
spec.summary = 'A series of helpers for consistency among HashiCorp\'s middleman sites' | ||
spec.description = spec.summary | ||
spec.homepage = 'https://github.com/hashicorp/middleman-hashicorp' | ||
|