Skip to content
Snippets Groups Projects
Commit 82008a53 authored by Clemens Beck's avatar Clemens Beck
Browse files

Fix docker build warnings

parent 41c59a1b
No related branches found
No related tags found
1 merge request!155Merge upstream Omnibus GitLab into Omnibus Heptapod
FROM ubuntu:22.04
MAINTAINER GitLab Inc. <support@gitlab.com>
ARG BASE_IMAGE=docker.io/ubuntu:22.04
FROM $BASE_IMAGE
ARG BASE_IMAGE
LABEL org.opencontainers.image.authors="GitLab Distribution Team <distribution-be@gitlab.com>" \
org.opencontainers.image.documentation="https://docs.gitlab.com/ee/install/docker/" \
org.opencontainers.image.source="https://gitlab.com/gitlab-org/omnibus-gitlab" \
org.opencontainers.image.title="GitLab Omnibus Docker" \
org.opencontainers.image.base.name=$BASE_IMAGE
SHELL ["/bin/sh", "-c"]
......@@ -30,7 +37,7 @@
&& rm -rf /var/lib/apt/lists/*
# Use BusyBox
ENV EDITOR /bin/vi
ENV EDITOR=/bin/vi
RUN busybox --install \
&& { \
echo '#!/bin/sh'; \
......@@ -57,6 +64,6 @@
/assets/setup
# Allow to access embedded tools
ENV PATH /opt/gitlab/embedded/bin:/opt/gitlab/bin:/assets:$PATH
ENV PATH=/opt/gitlab/embedded/bin:/opt/gitlab/bin:/assets:$PATH
# Resolve error: TERM environment variable not set.
......@@ -61,6 +68,6 @@
# Resolve error: TERM environment variable not set.
ENV TERM xterm
ENV TERM=xterm
# Expose web & ssh
EXPOSE 443 80 22
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment