-
Notifications
You must be signed in to change notification settings - Fork 0
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 #6 from SergioAtSUSE/suse_hackweek17
Fix writing permissions issue
- Loading branch information
Showing
2 changed files
with
30 additions
and
4 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
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,7 +1,7 @@ | ||
#!BuildTag: jupiter-system/gedit:1.0.1-3.20.2-3.24 | ||
#!BuildTag: jupiter-system/gedit:1.0.2-3.20.2-3.24 | ||
FROM opensuse:42.3 | ||
LABEL MAINTAINER="[email protected]" | ||
LABEL VERSION="1.0.1" | ||
LABEL VERSION="1.0.2" | ||
LABEL DESCRIPTION="gedit to be executed on a MicroOS server with X forwarding from a remote X-client" | ||
LABEL GITHUB="https://github.com/SergioAtSUSE/jupiter-system" | ||
|
||
|
@@ -15,13 +15,17 @@ RUN zypper --non-interactive install --force-resolution libudev1 | |
RUN zypper --non-interactive install --force-resolution xauth | ||
|
||
# App and dependencies | ||
RUN zypper --non-interactive install --force-resolution gedit | ||
RUN zypper --non-interactive install --force-resolution gedit=3.20.2-3.24 | ||
RUN zypper --non-interactive install --force-resolution iso-codes | ||
RUN zypper --non-interactive install --force-resolution libcanberra-gtk3-module | ||
RUN zypper --non-interactive install --force-resolution cantarell-fonts | ||
|
||
# For recently open files feature | ||
VOLUME [ "/home/nobody/.local/share" ] | ||
# For saving documents | ||
RUN mkdir "/permanent-data" | ||
RUN chown nobody:nogroup "/permanent-data" | ||
RUN chmod ug+rwxs "/permanent-data" | ||
VOLUME [ "/permanent-data" ] | ||
|
||
USER nobody:nogroup | ||
|