This repository has been archived by the owner on May 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Dockerfile
58 lines (46 loc) · 1.94 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
FROM localstack/java-maven-node-python
MAINTAINER Waldemar Hummer ([email protected])
LABEL authors="Waldemar Hummer ([email protected]), Gianluca Bortoli ([email protected])"
# add files required to run "make install"
ADD Makefile requirements.txt ./
RUN mkdir -p localstack/utils/kinesis/ && touch localstack/__init__.py localstack/utils/__init__.py localstack/utils/kinesis/__init__.py
ADD localstack/constants.py localstack/config.py localstack/
ADD localstack/utils/compat.py localstack/utils/common.py localstack/utils/
ADD localstack/utils/kinesis/ localstack/utils/kinesis/
ADD localstack/ext/ localstack/ext/
# install dependencies
RUN make install
# add files required to run "make init"
ADD localstack/package.json localstack/package.json
ADD localstack/services/__init__.py localstack/services/install.py localstack/services/
# initialize installation (downloads remaining dependencies)
RUN make init
# add rest of the code
ADD localstack/ localstack/
ADD bin/localstack bin/localstack
# fix some permissions and create local user
RUN mkdir -p /.npm && \
mkdir -p localstack/infra/elasticsearch/data && \
chmod 777 . && \
chmod 755 /root && \
chmod -R 777 /.npm && \
chmod -R 777 localstack/infra/elasticsearch/config && \
chmod -R 777 localstack/infra/elasticsearch/data && \
chmod -R 777 localstack/infra/elasticsearch/logs && \
chmod -R 777 /tmp/localstack && \
adduser -D localstack
# expose default environment (required for aws-cli to work)
ENV AWS_ACCESS_KEY_ID=foobar \
AWS_SECRET_ACCESS_KEY=foobar \
AWS_DEFAULT_REGION=us-east-1 \
MAVEN_CONFIG=/opt/code/localstack \
USER=localstack
# run tests (to verify the build before pushing the image)
ADD tests/ tests/
RUN make test
# expose service & web dashboard ports
EXPOSE 4567-4582 8080
# install supervisor daemon & copy config file
ADD supervisord.conf /etc/supervisord.conf
# define command at startup
ENTRYPOINT ["/usr/bin/supervisord"]