-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,15 +32,14 @@ | |
# Rultor has no dependency on these packages. | ||
|
||
FROM ubuntu:22.04 | ||
MAINTAINER Yegor Bugayenko <[email protected]> | ||
LABEL Description="This is the default image for Rultor.com" Vendor="Rultor.com" Version="0.0.0" | ||
LABEL Description="This is the default image for Rultor.com" Version="0.0.0" | ||
WORKDIR /tmp | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# To disable IPv6 | ||
RUN mkdir ~/.gnupg \ | ||
&& echo "disable-ipv6" >> ~/.gnupg/dirmngr.conf | ||
&& printf "disable-ipv6" >> ~/.gnupg/dirmngr.conf | ||
|
||
# UTF-8 locale | ||
RUN apt-get clean \ | ||
Check failure on line 45 in Dockerfile GitHub Actions / hadolint
Check failure on line 45 in Dockerfile GitHub Actions / hadolint
Check failure on line 45 in Dockerfile GitHub Actions / hadolint
|
||
|
@@ -58,7 +57,7 @@ ENV LANG en_US.UTF-8 | |
ENV LANGUAGE en_US.UTF-8 | ||
|
||
# Basic Linux tools | ||
RUN apt-get -y install wget \ | ||
RUN apt-get -y --no-install-recommends install wget \ | ||
vim \ | ||
curl \ | ||
sudo \ | ||
|
@@ -116,7 +115,7 @@ RUN mkdir -p /tmp/download \ | |
# Git 2.0 | ||
RUN add-apt-repository ppa:git-core/ppa \ | ||
&& apt-get update -y --fix-missing \ | ||
&& apt-get -y install git \ | ||
&& apt-get -y --no-install-recommends install git \ | ||
&& bash -c 'git --version' | ||
|
||
# SSH Daemon | ||
|