-
Notifications
You must be signed in to change notification settings - Fork 9
Updated all dockerfiles with their latest base images. #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 2 commits
c0e88e2
18d71b9
f495dbf
b4a1fbc
70405e0
5451bb4
a8c8f66
c1e9af5
41f91dc
e234be2
3dc8c62
3c2d950
494cc0c
7a2774a
d7cd975
afa9807
8db934e
7d88521
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| # Define the base image | ||
| FROM alpine:3.5 | ||
| FROM alpine:3.7 | ||
|
|
||
| # Set environment variables | ||
| ENV APP_HOME /app | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM golang:1.8-alpine | ||
| FROM golang:1.9.2-alpine3.7 | ||
|
|
||
| RUN apk add --no-cache git build-base | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM java:8 | ||
| FROM 9.0.1-11-jre-slim | ||
|
|
||
| # Install maven | ||
| RUN apt-get update | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM java:8 | ||
| FROM 9.0.1-11-jre-slim | ||
|
|
||
| # Install maven | ||
| RUN apt-get update | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM mhart/alpine-node:7.6.0 | ||
| FROM node:8 | ||
| WORKDIR /src | ||
| # Add app source files | ||
| ADD app/src /src | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM mhart/alpine-node:7.6.0 | ||
| FROM node:8 | ||
|
|
||
| WORKDIR /src | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM python:3.5.2-alpine | ||
| FROM python:3.7.0a3 | ||
|
|
||
| WORKDIR /usr/src/app | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM java:8 | ||
| FROM 9.0.1-11-jre-slim | ||
|
|
||
| RUN apt-get update | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM python:2.7-alpine | ||
| FROM python:3.7.0a3-alpine3.7 | ||
|
||
|
|
||
| WORKDIR /deploy | ||
|
|
||
|
|
@@ -11,4 +11,4 @@ COPY config.json /deploy/config.json | |
|
|
||
| COPY functions /deploy/functions | ||
|
|
||
| CMD ["python", "deploy.py"] | ||
| CMD ["python", "deploy.py"] | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Hyperclaw79 Can you fix this to a version and not
latest? Issue withlatestis that if a new release with breaking change happens, it cause problemsThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, already fixed it.