Fix some Dockerfile smells
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Armin Friedl 2021-01-03 23:17:38 +01:00
parent a462235481
commit 3f4fdbd47f

View file

@ -1,15 +1,13 @@
FROM debian FROM debian:buster
# Prepare image and install dependencies # Prepare image and install dependencies
ENV LANG=C.UTF-8 ENV LANG=C.UTF-8
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get upgrade -y RUN apt-get update && apt-get install -y \
flex bison build-essential \
RUN apt-get install -y flex bison build-essential \
csh libxaw7-dev wget \ csh libxaw7-dev wget \
libc6-i386 default-jdk \ libc6-i386 default-jdk
gdb
RUN mkdir -p /tmp/build RUN mkdir -p /tmp/build
COPY . /tmp/build COPY . /tmp/build