Sign inSign up

lifailon/transform

By lifailon

Updated 10 months ago

A polyglot web converter.

Image
Developer tools
0

235

lifailon/transform repository overview

Transform

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"]

Tag summary

Content type

Image

Digest

sha256:e0c6eef65

Size

523.5 MB

Last updated

10 months ago

docker pull lifailon/transform:amd64