-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: update Dockerfile * refactor: change to tc
- Loading branch information
1 parent
a96e396
commit a293b75
Showing
2 changed files
with
3 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,6 @@ | ||
# Use an official Node.js runtime as a parent image | ||
FROM node:latest | ||
|
||
# Install utilities | ||
FROM ubuntu:latest | ||
RUN apt-get update && apt-get install -y curl jq entr | ||
|
||
# Set the working directory | ||
WORKDIR /exercises | ||
|
||
# Copy the current directory contents into the container at /exercises | ||
COPY ./exercises/. /exercises | ||
|
||
# Make port 4000 available to the world outside this container | ||
EXPOSE 4000 | ||
|
||
RUN npm install -g @tailcallhq/tailcall | ||
|
||
curl -sSL https://raw.githubusercontent.com/tailcallhq/tailcall/master/install.sh | bash -s -- v0.16.0 |