forked from Fraunhofer-SIT/charra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.app
24 lines (20 loc) · 977 Bytes
/
Dockerfile.app
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
##############################################################################
# "Dockerfile" #
# #
# Author: Michael Eckel <[email protected]> #
# Date: 2019-06-26 #
# #
# Hint: Check your Dockerfile at https://www.fromlatest.io/ #
##############################################################################
FROM fraunhofer-sit/charra-dev-env:1.5.1 AS base
LABEL maintainer="Michael Eckel <[email protected]>"
## set environment variables
USER "$uid:$gid"
ENV HOME /home/"$user"
WORKDIR /home/"$user"
## compile CHARRA
COPY ./ /home/bob/charra
WORKDIR /home/bob/charra
RUN make -j
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["/bin/bash"]