good morning!!!!

Skip to content
Snippets Groups Projects
Dockerfile 330 B
Newer Older
Anmol Sethi's avatar
Anmol Sethi committed
FROM golang:1.12

LABEL "com.github.actions.name"="test"
LABEL "com.github.actions.description"=""
Anmol Sethi's avatar
Anmol Sethi committed
LABEL "com.github.actions.icon"="code"
LABEL "com.github.actions.color"="green"
Anmol Sethi's avatar
Anmol Sethi committed

RUN apt-get update && \
	apt-get install -y python-pip && \
	pip install autobahntestsuite
Anmol Sethi's avatar
Anmol Sethi committed

COPY entrypoint.sh /entrypoint.sh

CMD ["/entrypoint.sh"]