You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
450 B
20 lines
450 B
# 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"]
|
|
|