-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathDockerfile
More file actions
25 lines (20 loc) · 882 Bytes
/
Dockerfile
File metadata and controls
25 lines (20 loc) · 882 Bytes
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
FROM ubuntu:noble
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
git \
libgcc-s1 \
libssl3 \
libstdc++6 \
&& update-ca-certificates \
&& rm -rf /var/lib/apt/lists/*
COPY dist/docker/acton /usr/local/bin/acton
RUN chmod +x /usr/local/bin/acton
ENTRYPOINT ["/usr/local/bin/acton"]
LABEL org.opencontainers.image.title="Acton" \
org.opencontainers.image.description="TON smart contract development toolkit" \
org.opencontainers.image.url="https://ton-blockchain.github.io/acton/" \
org.opencontainers.image.source="https://github.com/ton-blockchain/acton" \
org.opencontainers.image.documentation="https://ton-blockchain.github.io/acton/docs/welcome" \
org.opencontainers.image.vendor="TON Core" \
org.opencontainers.image.licenses="MIT OR Apache-2.0"