-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integration tests for Ubuntu 24.04 (#86)
- Loading branch information
Showing
3 changed files
with
19 additions
and
1 deletion.
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
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,9 @@ | ||
FROM ubuntu:24.04 AS build1 | ||
RUN apt-get -qq update -y >/dev/null | ||
RUN apt-get -qq install -y wget >/dev/null | ||
|
||
FROM build1 AS build2 | ||
ARG package_name | ||
COPY ./tmp/$package_name . | ||
RUN apt-get -qq install -y ./$package_name | ||
|
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,9 @@ | ||
FROM ubuntu:24.04 AS build1 | ||
RUN apt-get -qq update -y | ||
RUN apt-get -qq install -y nginx >/dev/null | ||
COPY index.html /var/www/html | ||
|
||
FROM build1 AS build2 | ||
ARG package_name | ||
COPY ./tmp/$package_name . | ||
RUN apt-get -qq install -y ./$package_name |