You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: obs_example/Dockerfile
+6-2
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,15 @@
1
-
FROM opensuse:latest
1
+
FROM opensuse/tumbleweed AS tw
2
2
3
+
# debug
4
+
RUN cat /etc/os-release
5
+
6
+
FROM opensuse/leap:15.2
3
7
# Make obs_pkg_mgr available
4
8
ARG OBS_REPOSITORY_URL
5
9
ADD obs_pkg_mgr /usr/bin/obs_pkg_mgr
6
10
RUN chmod +x /usr/bin/obs_pkg_mgr
7
11
8
-
RUN obs_pkg_mgr add_repo http://download.opensuse.org/repositories/Virtualization:/containers/openSUSE_Leap_42.2/ "Virtualization:Containers (openSUSE_Leap_42.2)" && ls ; obs_pkg_mgr add_repo http://example.com/my_project:/mysubproject/my_package/ "My example project" && ls
12
+
RUN obs_pkg_mgr add_repo http://download.opensuse.org/repositories/Virtualization:/containers/openSUSE_Leap_15.2/ "Virtualization:Containers (openSUSE_Leap_15.2)" && ls ; obs_pkg_mgr add_repo http://example.com/my_project:/mysubproject/my_package/ "My example project" && ls
9
13
10
14
RUN obs_pkg_mgr install util-linux calcurse # amarok
0 commit comments