-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from tsebastiani/resources_rename
resources rename
- Loading branch information
Showing
5 changed files
with
36 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
FROM alpine:3.17.0 | ||
FROM quay.io/centos/centos:stream9 | ||
ENV CONTAINER true | ||
RUN apk add --no-cache aws-cli && \ | ||
apk add --no-cache netcat-openbsd && \ | ||
apk add --no-cache jq && \ | ||
apk add --no-cache netcat-openbsd && \ | ||
apk add --no-cache bash && \ | ||
apk add --no-cache sed && \ | ||
apk add --no-cache curl && \ | ||
apk add --no-cache figlet && \ | ||
apk add --no-cache openssh-client-default | ||
ENV PATH $PATH:/root/.awscliv2/binaries | ||
RUN rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm &&\ | ||
dnf install -y which &&\ | ||
dnf install -y jq &&\ | ||
dnf install -y nc &&\ | ||
dnf install -y pip &&\ | ||
dnf install -y figlet &&\ | ||
dnf install -y openssh-clients &&\ | ||
dnf install -y less &&\ | ||
pip install awscliv2 &&\ | ||
awscliv2 -i | ||
|
||
WORKDIR /app | ||
COPY . . | ||
RUN chmod +x openspot-ng.sh | ||
RUN chmod +x crc-cloud.sh | ||
|
||
ENTRYPOINT [ "/app/openspot-ng.sh" ] | ||
ENTRYPOINT [ "/app/crc-cloud.sh" ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v1.0 |
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters