-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (27 loc) · 1.2 KB
/
Dockerfile
File metadata and controls
33 lines (27 loc) · 1.2 KB
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
# Container image that runs your code
FROM dionoid/dasm-build:v1
# FROM ubuntu:16.04
# Install packages
# RUN apt update && apt upgrade -y &&\
# apt install -y curl &&\
# apt install -y make &&\
# apt install -y unzip &&\
# apt install -y git &&\
# apt install -y gcc &&\
# apt install -y gcc-multilib &&\
# apt install -y mingw-w64
#download darwin build packages
# RUN curl -O http://security.ubuntu.com/ubuntu/pool/universe/o/openssl098/libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1_amd64.deb &&\
# curl -O http://www.tarnyko.net/repo/apple-x86-gcc-DEBIAN-AMD64.zip &&\
# unzip apple-x86-gcc-DEBIAN-AMD64.zip &&\
# export DEBIAN_FRONTEND=noninteractive &&\
# dpkg -i libssl0.9.8_0.9.8o-7ubuntu3.2.14.04.1_amd64.deb &&\
# dpkg -i apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb &&\
# dpkg -i apple-x86-odcctools_758.159-0flosoft11_amd64.deb &&\
# dpkg -i apple-x86-gcc_4.2.1~5646.1flosoft2_amd64.deb &&\
# rm *.zip &&\
# rm *.deb
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh
# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/entrypoint.sh"]