Skip to content

Commit

Permalink
Initial commit - Modified from mattermost-community/focalboard#76
Browse files Browse the repository at this point in the history
  • Loading branch information
William Quinn committed Mar 17, 2021
1 parent f734846 commit 27fcc80
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.git
.cache
*.md
!README*.md
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM debian:stable-slim

RUN apt-get update \
&& apt-get install --no-install-recommends -y \
wget unzip file \
&& wget --no-check-certificate https://releases.mattermost.com/focalboard/0.5.0/focalboard-server-linux-amd64.tar.gz \
&& gzip -dc focalboard-server-linux-amd64.tar.gz | tar -xvzf - \
&& mv focalboard /opt \
&& rm -f focalboard-server-linux-amd64.tar.gz \
&& apt-get purge -y \
wget unzip file \
&& apt-get clean autoclean autoremove -y \
&& rm -rf /var/lib/apt/lists/*

EXPOSE 8000

WORKDIR /opt/focalboard

CMD /opt/focalboard/bin/focalboard-server

0 comments on commit 27fcc80

Please sign in to comment.