Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
neo773 committed Oct 18, 2023
1 parent 2b192ff commit 864632c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM ubuntu:latest
RUN apt-get update && apt-get install -y curl bash jq
# RUN apt-get update && apt-get install -y curl bash jq
WORKDIR /app
COPY ./app/. /app
EXPOSE 8000
RUN curl -sSL https://raw.githubusercontent.com/tailcallhq/tailcall/main/install.sh | bash -s && \
echo 'export PATH="$HOME/.tailcall/bin:$PATH"' >> ~/.bash_profile
CMD /bin/bash -c "source ~/.bash_profile && tc start /app/example.graphql"
RUN curl -sSL https://raw.githubusercontent.com/tailcallhq/tailcall/main/install.sh | zsh -s && \
echo 'export PATH="$HOME/.tailcall/bin:$PATH"' >> ~/.zshrc
CMD /bin/zsh -c "source ~/.zshrc && tc start /app/example.graphql"

0 comments on commit 864632c

Please sign in to comment.