Skip to content

Commit

Permalink
Merge pull request #16 from compose-generator/dev
Browse files Browse the repository at this point in the history
Release of version 1.5.0
  • Loading branch information
marcauberer authored Dec 16, 2021
2 parents 81323f7 + 81cbc5a commit 578e5c1
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 33 deletions.
23 changes: 3 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,8 @@ docker run --rm -it -v ${pwd}:/toolbox ghcr.io/compose-generator/compose-generat
Please note, that this Docker image is based on Linux Alpine and only supports a limited number of commands. So check if your command is supported in the list below.

## Included Linux commands
- bash
- cargo
- create-react-app
- curl
- django-admin
- dotnet (not for armv6, armv7, arm64)
- git
- go (not for i386)
- make
- ng
- npm
- pip
- python / python3
- rails
- ruby
- rustup
- sh
- unzip
- vue
- yarn

`bash`, `cargo`, `create-react-app`, `curl`, `django-admin`, `dotnet` (not for armv6, armv7, arm64), `git`, `go` (not for i386), `make`, `ng`, `npm`,
`pip`, `python`, `python3`, `rails`, `rustup`, `sh`, `unzip`, `vue`, `yarn`

© Marc Auberer 2021
6 changes: 3 additions & 3 deletions amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ RUN apk update && apk add --no-cache sudo=1.9.8_p2-r1 bash=5.1.8-r0 curl=7.80.0-
RUN yarn config set network-timeout 600000 -g && yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all

# Install pip dependencies
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.9
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==4.0

# Install gem packages
RUN gem install rails:6.1.4.1 && gem cleanup

# Install golang
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.3-r0 openssl=1.1.1l-r7 \
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.4-r0 openssl=1.1.1l-r7 \
&& rm -rf /var/cache/apk/* \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.3.src.tar.gz \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.4.src.tar.gz \
&& tar -C /usr/local -xzf go.tar.gz && rm go.tar.gz
WORKDIR /usr/local/go/src/
RUN ./make.bash && apk del .build-deps
Expand Down
6 changes: 3 additions & 3 deletions arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ RUN apk update && apk add --no-cache sudo=1.9.8_p2-r1 bash=5.1.8-r0 curl=7.80.0-
RUN yarn config set network-timeout 600000 -g && yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all

# Install pip dependencies
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.9
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==4.0

# Install gem packages
RUN gem install rails:6.1.4.1 && gem cleanup

# Install golang
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.3-r0 openssl=1.1.1l-r7 \
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.4-r0 openssl=1.1.1l-r7 \
&& rm -rf /var/cache/apk/* \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.3.src.tar.gz \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.4.src.tar.gz \
&& tar -C /usr/local -xzf go.tar.gz && rm go.tar.gz
WORKDIR /usr/local/go/src/
RUN ./make.bash && apk del .build-deps
Expand Down
6 changes: 3 additions & 3 deletions armv6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ RUN apk update && apk add --no-cache sudo=1.9.8_p2-r1 bash=5.1.8-r0 curl=7.80.0-
RUN yarn config set network-timeout 600000 -g && yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all

# Install pip dependencies
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.9
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==4.0

# Install gem packages
RUN gem install rails:6.1.4.1 && gem cleanup

# Install golang
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.3-r0 openssl=1.1.1l-r7 \
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.4-r0 openssl=1.1.1l-r7 \
&& rm -rf /var/cache/apk/* \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.3.src.tar.gz \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.4.src.tar.gz \
&& tar -C /usr/local -xzf go.tar.gz && rm go.tar.gz
WORKDIR /usr/local/go/src/
RUN ./make.bash && apk del .build-deps
Expand Down
6 changes: 3 additions & 3 deletions armv7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ RUN apk update && apk add --no-cache sudo=1.9.8_p2-r1 bash=5.1.8-r0 curl=7.80.0-
RUN yarn config set network-timeout 600000 -g && yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all

# Install pip dependencies
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.9
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==4.0

# Install gem packages
RUN gem install rails:6.1.4.1 && gem cleanup

# Install golang
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.3-r0 openssl=1.1.1l-r7 \
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.4-r0 openssl=1.1.1l-r7 \
&& rm -rf /var/cache/apk/* \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.3.src.tar.gz \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.4.src.tar.gz \
&& tar -C /usr/local -xzf go.tar.gz && rm go.tar.gz
WORKDIR /usr/local/go/src/
RUN ./make.bash && apk del .build-deps
Expand Down
2 changes: 1 addition & 1 deletion i386/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apk update && apk add --no-cache sudo=1.9.8_p2-r1 bash=5.1.8-r0 curl=7.80.0-
RUN yarn config set network-timeout 600000 -g && yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all

# Install pip dependencies
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.9
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==4.0

# Install gem packages
RUN gem install rails:6.1.4.1 && gem cleanup
Expand Down

0 comments on commit 578e5c1

Please sign in to comment.