Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Dockerfile base image change #1108

Merged
merged 2 commits into from
Sep 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:bionic
FROM ruby:2.6.7-buster

RUN apt-get update && \
apt-get install -y ruby-full build-essential zlib1g-dev wget python2.7 libpython2.7
RUN apt update && \
apt install -y ruby-full build-essential zlib1g-dev wget python2.7 libpython2.7

RUN cd /tmp && \
wget https://github.com/wjdp/htmltest/releases/download/v0.14.0/htmltest_0.14.0_linux_amd64.tar.gz && \
Expand Down