This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the Dockerfile to fix Alpine SSL issues
This change adds the `openssl` and `ca-certificates` packages and fixes the SSL issues that are common when you're trying to run scripts in Alpine.
- Loading branch information
Showing
3 changed files
with
12 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,8 @@ FROM ruby:2.4.2-alpine | |
|
||
MAINTAINER Darren Oakley <[email protected]> | ||
|
||
RUN apk add --update --no-cache build-base ruby-dev libxml2-dev libxslt-dev postgresql-dev mysql-dev openssl-dev | ||
RUN apk add --update --no-cache build-base ruby-dev libxml2-dev libxslt-dev postgresql-dev mysql-dev openssl openssl-dev ca-certificates && \ | ||
update-ca-certificates | ||
|
||
ENV APP_HOME /app | ||
RUN mkdir $APP_HOME | ||
|
@@ -16,4 +17,4 @@ COPY . . | |
|
||
EXPOSE 5000 | ||
|
||
CMD "puma" | ||
CMD ["puma"] |
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,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Bandiera | ||
VERSION = '3.5.2' | ||
VERSION = '3.5.3' | ||
end |