Giter VIP home page Giter VIP logo

Comments (8)

AzamServer avatar AzamServer commented on May 18, 2024 1

I have forked the repo, and am trying to make a local docker image. If that is fine with @szabodanika, can I make a pull request once I am done?

from microbin.

morganzero avatar morganzero commented on May 18, 2024 1

I'd love a dockerized version of this!

from microbin.

szabodanika avatar szabodanika commented on May 18, 2024

There isn't one yet but I'd be more than happy to add one, I don't see why not. I will look into it soon, it should be fairly simple to set it up as well.

from microbin.

szabodanika avatar szabodanika commented on May 18, 2024

I have a Dockerfile draft on my PC - I will share this as soon as I get home from work. I'm not sure how I will make the docker images though, I really want platform independent images but they look quite hard to make. Maybe for now it'll be easier to add the Dockerfile and instructions for how to set it up or perhaps a bash script that does that automatically, and maybe a simple Linux/x86 image, most people would need that one anyways I assume.

from microbin.

szabodanika avatar szabodanika commented on May 18, 2024

This is what I came up with, what do you think?

@AzamServer, were you thinking of something like this?

It works fine on my M1 Mac:

# latest rust will be used to build the binary
FROM rust:latest as builder

# the temporary directory where we build
WORKDIR /usr/src/microbin

# copy sources to /usr/src/microbin on the temporary container
COPY . .

# run release build
RUN cargo build --release

# create final container using slim version of debian
FROM debian:buster-slim

# microbin will be in /usr/local/bin/microbin/
WORKDIR /usr/local/bin

# copy built exacutable
COPY --from=builder /usr/src/microbin/target/release/microbin /usr/local/bin/microbin

# copy /static folder containing the stylesheets
COPY --from=builder /usr/src/microbin/static /usr/local/bin/static

# run the binary
CMD ["microbin"]

from microbin.

AzamServer avatar AzamServer commented on May 18, 2024

I made one where I would keep the Rust parent image, and not change to a bare Debian image, but yours would work better, as it would have a smaller image size.

from microbin.

szabodanika avatar szabodanika commented on May 18, 2024

I merged #49 and successfully ran the workflow, images are available at https://hub.docker.com/repository/docker/danielszabo99/microbin and each new tag should be automatically appear on DockerHub in an hour or so. You guys can give it a try, hopefully it works fine on both arm and x86.

from microbin.

szabodanika avatar szabodanika commented on May 18, 2024

Please use #23 for any further discussion on this

from microbin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.