Skip to content

Commit

Permalink
Merge pull request #47 from codecrafters-io/CC-1153
Browse files Browse the repository at this point in the history
Update sample dockerfiles to use latest base images
  • Loading branch information
rohitpaulk authored Apr 23, 2024
2 parents bbda033 + 235a21c commit 70ae22e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion compiled_starters/go/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-alpine
FROM golang:1.22-alpine

RUN apk add --no-cache 'curl>=7.66'

Expand Down
2 changes: 1 addition & 1 deletion compiled_starters/python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-alpine
FROM python:3.12-alpine

RUN apk add --no-cache 'curl>=7.66'

Expand Down
2 changes: 1 addition & 1 deletion compiled_starters/rust/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.62-buster
FROM rust:1.77-buster

# Download docker-explorer
ARG docker_explorer_version=v18
Expand Down
2 changes: 1 addition & 1 deletion solutions/go/01-init/code/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-alpine
FROM golang:1.22-alpine

RUN apk add --no-cache 'curl>=7.66'

Expand Down
2 changes: 1 addition & 1 deletion solutions/python/01-init/code/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-alpine
FROM python:3.12-alpine

RUN apk add --no-cache 'curl>=7.66'

Expand Down
2 changes: 1 addition & 1 deletion solutions/rust/01-init/code/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.62-buster
FROM rust:1.77-buster

# Download docker-explorer
ARG docker_explorer_version=v18
Expand Down
2 changes: 1 addition & 1 deletion starter_templates/go/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-alpine
FROM golang:1.22-alpine

RUN apk add --no-cache 'curl>=7.66'

Expand Down
2 changes: 1 addition & 1 deletion starter_templates/python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-alpine
FROM python:3.12-alpine

RUN apk add --no-cache 'curl>=7.66'

Expand Down
2 changes: 1 addition & 1 deletion starter_templates/rust/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.62-buster
FROM rust:1.77-buster

# Download docker-explorer
ARG docker_explorer_version=v18
Expand Down

0 comments on commit 70ae22e

Please sign in to comment.