Skip to content

Commit

Permalink
Add Gitpod configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaasonen committed Sep 20, 2021
1 parent 45b2dbc commit be448b5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM gitpod/workspace-full

ARG FB_VERSION=1.08.1
ARG OS_VERSION=ubuntu-20.04
ARG OS_ARCH=x86_64
ARG DOWNLOAD_NAME=FreeBASIC-$FB_VERSION-$OS_VERSION-$OS_ARCH

WORKDIR /tmp/
RUN wget https://sourceforge.net/projects/fbc/files/FreeBASIC-$FB_VERSION/Binaries-Linux/$OS_VERSION/$DOWNLOAD_NAME.tar.gz
RUN tar -xvf $DOWNLOAD_NAME.tar.gz
WORKDIR /tmp/$DOWNLOAD_NAME/
RUN sudo ./install.sh -i
2 changes: 2 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
image:
file: .gitpod.Dockerfile
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# hexfile

Simple command-line tool which prints a hex dump of a file.
Simple command-line tool which prints a hex dump of a file.

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/jlaasonen/hexfile)

## Requirements

Expand Down

0 comments on commit be448b5

Please sign in to comment.