First Commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
# vim: ft=dockerfile
|
||||
|
||||
FROM debian:buster
|
||||
|
||||
ENV LANG C.UTF-8
|
||||
|
||||
# Manage i386 arch
|
||||
RUN dpkg --add-architecture i386
|
||||
|
||||
RUN apt-get update && apt-get install --no-install-recommends -y make imagemagick curl jq wget procps intltool
|
||||
|
||||
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
|
||||
# Volume pointing to spksrc sources
|
||||
VOLUME /spksrc
|
||||
|
||||
WORKDIR /spksrc
|
||||
|
||||
COPY syn-pkg-entrypoint.sh /syn-pkg-entrypoint.sh
|
||||
ENTRYPOINT ["/syn-pkg-entrypoint.sh"]
|
||||
Reference in New Issue
Block a user