A polyglot web converter.
235
Transform public Docker image for the amd64 platform:
services:
transform:
image: lifailon/transform:amd64
container_name: transform
restart: unless-stopped
ports:
- 3090:3000
Built with the following Dockerfile (latest version from February 17, 2024):
FROM node:16-alpine
WORKDIR /app
RUN apk add --no-cache \
git \
autoconf \
automake \
make \
g++ \
libtool \
nasm \
libpng-dev
RUN git clone https://github.com/ritz078/transform.git .
RUN yarn install --frozen-lockfile
RUN yarn build
EXPOSE 3000
ENTRYPOINT ["yarn", "start"]
Content type
Image
Digest
sha256:e0c6eef65…
Size
523.5 MB
Last updated
10 months ago
docker pull lifailon/transform:amd64