Skip to content

Commit

Permalink
docs: fix dockerfile casing
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Jul 3, 2024
1 parent 6b72750 commit 173a98b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/custom-base-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Use this template for using a custom base image with our default user named `ubu
# This containerbase is used for tool intallation and user/directory setup
FROM containerbase/base AS containerbase

FROM amd64/ubuntu:jammy as base
FROM amd64/ubuntu:jammy AS base

# Allows custom apt proxy usage
ARG APT_HTTP_PROXY
Expand Down Expand Up @@ -58,7 +58,7 @@ You can also customize username or userid by using this template.
# This containerbase is used for tool intallation and user/directory setup
FROM containerbase/base AS containerbase

FROM amd64/ubuntu:jammy as base
FROM amd64/ubuntu:jammy AS base

# The containerbase supports custom user
ARG USER_NAME=custom
Expand Down Expand Up @@ -107,7 +107,7 @@ The group must already exist.
# This containerbase is used for tool intallation and user/directory setup
FROM containerbase/base AS containerbase

FROM amd64/ubuntu:jammy as base
FROM amd64/ubuntu:jammy AS base

ARG USER_NAME=gitpod
ARG USER_ID=33333
Expand Down

0 comments on commit 173a98b

Please sign in to comment.