Skip to content
This repository has been archived by the owner on Sep 1, 2021. It is now read-only.

Commit

Permalink
WIP Docker image for running F-Droid build scripts, refs #36
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreMiras committed May 23, 2018
1 parent b017864 commit 55852b2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/fdroid/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Docker image for running F-Droid build scripts.
# Build with:
# docker build --tag=fdroid .
# Run with:
# docker run fdroid /bin/sh -c 'fdroid build -v -l com.github.andremiras.etheroll'
# Or for interactive shell:
# docker run -it --rm fdroid
FROM ubuntu:18.04

# configure locale
RUN apt update -qq > /dev/null && apt install --yes --no-install-recommends \
locales && \
locale-gen en_US.UTF-8
ENV LANG="en_US.UTF-8" \
LANGUAGE="en_US.UTF-8" \
LC_ALL="en_US.UTF-8"

# install system dependencies
RUN apt update -qq > /dev/null && apt install --yes --no-install-recommends \
python3 python3-dev

WORKDIR /app

0 comments on commit 55852b2

Please sign in to comment.