1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-06-01 21:54:42 -04:00
Files
aprsd/Dockerfile-dev
T

49 lines
1.2 KiB
Plaintext
Raw Normal View History

2020-12-17 10:16:58 -05:00
FROM alpine:latest as aprsd
2020-12-15 10:27:53 -05:00
# Dockerfile for building a container during aprsd development.
ENV VERSION=1.0.0
ENV APRS_USER=aprs
ENV HOME=/home/aprs
ENV APRSD=http://github.com/craigerl/aprsd.git
2020-12-21 11:57:54 -05:00
ENV APRSD_BRANCH="v1.1.0"
2020-12-15 10:27:53 -05:00
ENV VIRTUAL_ENV=$HOME/.venv3
ENV INSTALL=$HOME/install
2020-12-20 17:16:15 -05:00
RUN apk add --update git vim wget py3-pip py3-virtualenv bash fortune
2020-12-15 10:27:53 -05:00
# Setup Timezone
ENV TZ=US/Eastern
2020-12-17 10:16:58 -05:00
#RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
#RUN apt-get install -y tzdata
#RUN dpkg-reconfigure --frontend noninteractive tzdata
2020-12-15 10:27:53 -05:00
2020-12-17 10:16:58 -05:00
RUN addgroup --gid 1001 $APRS_USER
RUN adduser -h $HOME -D -u 1001 -G $APRS_USER $APRS_USER
2020-12-15 10:27:53 -05:00
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
USER $APRS_USER
RUN pip3 install wheel
RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
RUN echo "export PATH=\$PATH:\$HOME/.local/bin" >> $HOME/.bashrc
VOLUME ["/config", "/plugins"]
WORKDIR $HOME
RUN mkdir $INSTALL
RUN git clone -b $APRSD_BRANCH $APRSD $INSTALL/aprsd
RUN cd $INSTALL/aprsd && pip3 install .
RUN which aprsd
USER root
RUN aprsd sample-config > /config/aprsd.yml
RUN chown -R $APRS_USER:$APRS_USER /config
# override this to run another configuration
ENV CONF default
USER $APRS_USER
ADD build/bin/run.sh $HOME/
ENTRYPOINT ["/home/aprs/run.sh"]