Fix some Dockerfile smells
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
a462235481
commit
3f4fdbd47f
1 changed files with 4 additions and 6 deletions
10
Dockerfile
10
Dockerfile
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue