Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dockerfile for building a Tabix Docker image #261

Open
rikonor opened this issue Mar 22, 2023 · 2 comments
Open

Dockerfile for building a Tabix Docker image #261

rikonor opened this issue Mar 22, 2023 · 2 comments

Comments

@rikonor
Copy link

rikonor commented Mar 22, 2023

Hi,

I've had to do this a few times in the past, so just putting this here for reference in case someone finds it useful.

FROM ubuntu:22.04

RUN \
    apt-get update && \
    apt-get install -y \
        curl \
        unzip

RUN \
    curl -fsSL https://deb.nodesource.com/setup_lts.x | sh - && \
    apt-get install -y nodejs && \
    npm i -g yarn

WORKDIR /tmp

ADD \
    https://github.com/tabixio/tabix/archive/refs/heads/master.zip .

RUN \
    unzip master.zip && rm master.zip && \
    cd tabix-master && \
    echo 'nodeLinker: node-modules' > .yarnrc.yml && \
    yarn set version 3.1.1 && \
    yarn install && \
    yarn build

WORKDIR /tmp/tabix-master/dist

CMD [ "python3", "-m", "http.server" ]

Build with docker build -t tabix . and run with docker run --it -p 8000:8000 tabix.

@rikonor rikonor changed the title Dockerfile for Tabix Dockerfile for building a Tabix Docker image Mar 22, 2023
@rikonor
Copy link
Author

rikonor commented Mar 29, 2023

Smaller image version:

FROM ubuntu:22.04 AS builder

RUN \
    apt-get update && \
    apt-get install -y \
        curl \
        unzip

RUN \
    curl -fsSL https://deb.nodesource.com/setup_lts.x | sh - && \
    apt-get install -y nodejs && \
    npm i -g yarn

WORKDIR /tmp

ADD \
    https://github.com/tabixio/tabix/archive/refs/heads/master.zip .

RUN \
    unzip master.zip && rm master.zip && \
    cd tabix-master && \
    echo 'nodeLinker: node-modules' > .yarnrc.yml && \
    yarn set version 3.1.1 && \
    yarn install && \
    yarn build

FROM python:alpine

COPY --from=builder \
    /tmp/tabix-master/dist \
    /tabix

WORKDIR /tabix

CMD [ "python3", "-m", "http.server" ]

@fufar
Copy link

fufar commented Apr 5, 2023

for me versions above didn't worked untill i set up port in CMD

FROM ubuntu:22.04

RUN \
    apt-get update && \
    apt-get install -y \
        curl \
        unzip

RUN \
    curl -fsSL https://deb.nodesource.com/setup_lts.x | sh - && \
    apt-get install -y nodejs && \
    npm i -g yarn

WORKDIR /tmp

ADD \
    https://github.com/tabixio/tabix/archive/refs/heads/master.zip .

RUN \
    unzip master.zip && rm master.zip && \
    cd tabix-master && \
    echo 'nodeLinker: node-modules' > .yarnrc.yml && \
    yarn set version 3.1.1 && \
    yarn install && \
    yarn build

WORKDIR /tmp/tabix-master/dist

CMD [ "python3", "-m", "http.server", "8000" ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants