Another Update Package Yaaay #9

Merged
gaisser merged 21 commits from mueller/yet-another-update-package-nice into master 2021-05-25 14:55:42 +02:00
2 changed files with 8 additions and 6 deletions
Showing only changes of commit 90edbe2968 - Show all commits

View File

@ -1,7 +1,8 @@
FROM ubuntu:latest
FROM alpine:latest
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install -y cmake g++
# RUN apt-get update -y && apt-get upgrade -y
# RUN apt-get install -y cmake g++
RUN apk add cmake make g++
COPY . /usr/src/app
WORKDIR /usr/src/app

View File

@ -1,7 +1,8 @@
FROM ubuntu:latest
FROM alpine:latest
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install -y cmake g++
# RUN apt-get update -y && apt-get upgrade -y
# RUN apt-get install -y cmake g++
RUN apk add cmake make g++
COPY . /usr/src/app
WORKDIR /usr/src/app