Skip to content

Commit

Permalink
build: replace base image with ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbeng committed Aug 20, 2024
1 parent f2c13a0 commit f29e0eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# This Dockerfile might not follow best practices, but that is an intentional
# choice to have this Dockerfile use the install scripts that users use in the tutorial.

FROM docker.io/alpine:latest
FROM ubuntu:latest

# Install system dependencies
RUN apk update && apk add --no-cache bash curl jq git make sed ranger vim
RUN apt update && apt install bash curl jq git make sed ranger vim

# Set the working directory
WORKDIR /app
Expand Down

0 comments on commit f29e0eb

Please sign in to comment.