-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1563e3
commit 064e661
Showing
1 changed file
with
18 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# elementary docker image for vala-lint | ||
|
||
FROM ubuntu:bionic | ||
|
||
MAINTAINER Blake Kostner <[email protected]> | ||
|
||
RUN apt-get update && apt-get -y install software-properties-common | ||
|
||
RUN add-apt-repository -y ppa:elementary-os/daily | ||
|
||
RUN apt-get update && apt-get install -y io.elementary.vala-lint | ||
|
||
RUN mkdir -p /var/opt/vala-lint | ||
|
||
VOLUME /var/opt/vala-lint | ||
WORKDIR /var/opt/vala-lint | ||
|
||
CMD ["/usr/bin/io.elementary.vala-lint", "**/*.vala"] |