Skip to content

Commit

Permalink
Use default bionic distro
Browse files Browse the repository at this point in the history
  • Loading branch information
retzero authored May 26, 2021
1 parent 911f2ca commit 4958fcd
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
FROM ubuntu:xenial
FROM ubuntu:bionic

MAINTAINER Hyokeun Jeon <[email protected]>

# Install gbs
RUN echo "deb [trusted=yes] http://download.tizen.org/tools/archive/18.01.4/Ubuntu_16.04/ /" >> /etc/apt/sources.list
RUN echo "deb [trusted=yes] http://download.tizen.org/tools/latest-release/Ubuntu_18.04/ /" >> /etc/apt/sources.list

RUN apt-get update

RUN apt-get install -y --force-yes wget gbs
RUN apt update \
&& apt install -y --force-yes wget gbs zip unzip \
&& apt autoremove && apt clean && apt autoclean && apt autoclean \
&& rm -rf /var/cache/apt/archives

# Binfmt configuration
RUN find /proc/sys/fs/binfmt_misc/ -name "qemu-*" -type f -exec sh -c "echo -1 | tee {}" \;

ENTRYPOINT ["gbs"]
CMD ["--version"]

0 comments on commit 4958fcd

Please sign in to comment.